home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 2 / Gold Medal Software Volume 2 (Gold Medal) (1994).iso / os2 / zoc110.arj / ZOC / SCRIPT / SAMPLES / 6_RESPND < prev    next >
Text File  |  1993-12-04  |  755b  |  31 lines

  1.  
  2. ////////////////////////////////////////////////////////
  3. // AUTORESPONSE
  4. ////////////////////////////////////////////////////////
  5. // with the RESPOND function you may setup automatic
  6. // responses for incoming data. These responses are 
  7. // checked within a DELAY or WAIT command.
  8.  
  9. // There is a limitation of 16 responses, each having
  10. // 80 characters max.
  11.  
  12. // This is a example of how to login to a bbs and skip
  13. // across the initial news (assumed that they have
  14. // a "- press enter to continue -" prompt)
  15.  
  16. // Setup a few responses
  17. respond "Name" "ZOC^M"
  18. respond "Password" "SECRET^M"
  19. respond " continue -"  "^M"
  20.  
  21. // Dial in
  22. dial 999-8888-7777
  23.  
  24. // wait and leave the work to the responses
  25. timeout 3600
  26. wait "NO CARRIER"
  27.  
  28.  
  29.  
  30.  
  31.